home *** CD-ROM | disk | FTP | other *** search
/ User's Choice Windows CD / User's Choice Windows CD (CMS Software)(1993).iso / utility3 / jfklib.zip / JFKLIB.CPP < prev    next >
Text File  |  1991-05-10  |  304b  |  21 lines

  1. /*
  2.     JFKLIB.CPP
  3.     (C) 1991 by Joachim Kainz 'On a mission from Bhudda'
  4. */
  5.     #include "jfklib.hpp"
  6.  
  7.     HANDLE hJFKInst = NULL;
  8.  
  9.     HANDLE SetInstance (HANDLE hInstance)
  10.     {
  11.         if (!hJFKInst)
  12.             hJFKInst = hInstance;
  13.  
  14.         return GetInstance ();
  15.     }
  16.  
  17.     HANDLE GetInstance ()
  18.     {
  19.         return hJFKInst;
  20.     }
  21.